+ | addition | << | bitwise shift left |
- | subtraction (or negation) | >> | bitwise shift right |
* | multiplication | && | logical and |
/ | division | || | logical or |
** | raise to the power | ! | logical not |
% | modulus | == | equality test |
= | assignment | != | inequality test |
& | bitwise AND | < | less than test |
| | bitwise OR | > | greater than test |
~ | bitwise NOT | <= | less than or equal to test |
^ | bitwise XOR | >= | greater than or equal to test |